Named-entity recognition

python
datacamp
machine learning
nlp
Author

kakamana

Published

March 24, 2023

Named-entity recognition

Throughout this chapter, you will learn how to use pre-trained models on English and non-English texts to identify who, what, and where in your texts. This course introduces a slightly more advanced topic: named entity recognition. You will also learn how to use two new libraries to enhance your Natural Language Processing toolkit, polyglot and spaCy.

This Named-entity recognition is part of Datacamp course: Introduction to Natural Language Processing in Python You will learn the basics of natural language processing (NLP), such as how to identify and separate words, how to extract topics from a text, and how to construct your own fake news classifier. As part of this course, you will also learn how to use basic libraries such as NLTK as well as libraries that utilize deep learning to solve common NLP problems. The purpose of this course is to provide you with the foundation for processing and parsing text as you progress through your Python learning journey.

This is my learning experience of data science through DataCamp. These repository contributions are part of my learning journey through my graduate program masters of applied data sciences (MADS) at University Of Michigan, DeepLearning.AI, Coursera & DataCamp. You can find my similar articles & more stories at my medium & LinkedIn profile. I am available at kaggle & github blogs & github repos. Thank you for your motivation, support & valuable feedback.

These include projects, coursework & notebook which I learned through my data science journey. They are created for reproducible & future reference purpose only. All source code, slides or screenshot are intellactual property of respective content authors. If you find these contents beneficial, kindly consider learning subscription from DeepLearning.AI Subscription, Coursera, DataCamp

Code
import pandas as pd
import matplotlib.pyplot as plt
import re
from nltk.tokenize import word_tokenize, sent_tokenize
Code
import nltk
nltk.download('averaged_perceptron_tagger')
nltk.download('maxent_ne_chunker')
nltk.download('words')
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data]     C:\Users\dghr201\AppData\Roaming\nltk_data...
[nltk_data]   Unzipping taggers\averaged_perceptron_tagger.zip.
[nltk_data] Downloading package maxent_ne_chunker to
[nltk_data]     C:\Users\dghr201\AppData\Roaming\nltk_data...
[nltk_data]   Unzipping chunkers\maxent_ne_chunker.zip.
[nltk_data] Downloading package words to
[nltk_data]     C:\Users\dghr201\AppData\Roaming\nltk_data...
[nltk_data]   Unzipping corpora\words.zip.
True

Named Entity Recognition

Named Entity Recognition (NER)
    NLP task to identify important named entities in the text
        People, places, organizations
        Dates, states, works of art
    Can be used alongside topic identification
    Who? What? When? Where?
Code
with open('dataset/News articles/uber_apple.txt', 'r',encoding="utf-8") as file:
    article = file.read()
Code
from nltk.tokenize import sent_tokenize, word_tokenize

# Tokenize the article into sentences: sentences
sentences = sent_tokenize(article)

# Tokenize each sentence into words: token_sentences
token_sentences = [word_tokenize(sent) for sent in sentences]

# Tag each tokenized sentence into parts of speech: pos_sentences
pos_sentences = [nltk.pos_tag(sent) for sent in token_sentences]

# Create the named entity chunks: chunked_sentences
chunked_sentences = nltk.ne_chunk_sents(pos_sentences, binary=True)

# Test for stems of the tree with 'NE' tags
for sent in chunked_sentences:
    for chunk in sent:
        if hasattr(chunk, "label") and chunk.label() == 'NE':
            print(chunk)
(NE Uber/NNP)
(NE Beyond/NN)
(NE Apple/NNP)
(NE Uber/NNP)
(NE Uber/NNP)
(NE Travis/NNP Kalanick/NNP)
(NE Tim/NNP Cook/NNP)
(NE Apple/NNP)
(NE Silicon/NNP Valley/NNP)
(NE CEO/NNP)
(NE Yahoo/NNP)
(NE Marissa/NNP Mayer/NNP)

Charting practice

In this exercise, you’ll use some extracted named entities and their groupings from a series of newspaper articles to chart the diversity of named entity types in the articles.

Code
chunked_sentences = nltk.ne_chunk_sents(pos_sentences, binary=False)
Code
from collections import defaultdict


# Create the defaultdict: ner_categories
ner_categories = defaultdict(int)

# Create the nested for loop
for sent in chunked_sentences:
    for chunk in sent:
        if hasattr(chunk, 'label'):
            ner_categories[chunk.label()] += 1

# Create a list from the dictionary keys for the cart labels: labels
labels = list(ner_categories.keys())

# Create a list of the values: values
values = [ner_categories.get(l) for l in labels]

# Create the pie chart
fig = plt.figure(figsize=(8, 8))
plt.pie(values, labels=labels, autopct='%1.1f%%', startangle=140);

Introduction to SpaCy

SpaCy
    NLP library similar to gensim, with different implementations
    Focuson creating NLP pipelines to generate models and corpora
    Open source, with extra libraries and tools
        Displacy
Why use SpaCy for NER?
    Easy pipeline creation
    Different entity types compared to nltk
    Informal language corpora
        Easily find entities in Tweets and chat messages

Comparing NLTK with spaCy NER

Code
!spacy download en_core_web_sm

#for mac use following
#bash python -m spacy download en_core_web_sm
Collecting en-core-web-sm==3.5.0
  Downloading https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.5.0/en_core_web_sm-3.5.0-py3-none-any.whl (12.8 MB)
Requirement already satisfied: spacy<3.6.0,>=3.5.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from en-core-web-sm==3.5.0) (3.5.1)
Requirement already satisfied: packaging>=20.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (21.3)
Requirement already satisfied: requests<3.0.0,>=2.13.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (2.28.1)
Requirement already satisfied: cymem<2.1.0,>=2.0.2 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (2.0.7)
Requirement already satisfied: smart-open<7.0.0,>=5.2.1 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (6.3.0)
Requirement already satisfied: thinc<8.2.0,>=8.1.8 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (8.1.9)
Requirement already satisfied: srsly<3.0.0,>=2.4.3 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (2.4.6)
Requirement already satisfied: pydantic!=1.8,!=1.8.1,<1.11.0,>=1.7.4 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (1.10.7)
Requirement already satisfied: setuptools in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (57.4.0)
Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (1.0.9)
Requirement already satisfied: spacy-loggers<2.0.0,>=1.0.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (1.0.4)
Requirement already satisfied: typer<0.8.0,>=0.3.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (0.7.0)
Requirement already satisfied: langcodes<4.0.0,>=3.2.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (3.3.0)
Requirement already satisfied: preshed<3.1.0,>=3.0.2 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (3.0.8)
Requirement already satisfied: spacy-legacy<3.1.0,>=3.0.11 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (3.0.12)
Requirement already satisfied: pathy>=0.10.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (0.10.1)
Requirement already satisfied: wasabi<1.2.0,>=0.9.1 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (1.1.1)
Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in c:\users\dghr201\appdata\roaming\python\python39\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (4.64.1)
Requirement already satisfied: jinja2 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (3.1.2)
Requirement already satisfied: numpy>=1.15.0 in c:\users\dghr201\appdata\roaming\python\python39\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (1.23.2)
Requirement already satisfied: catalogue<2.1.0,>=2.0.6 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (2.0.8)
Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from packaging>=20.0->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (3.0.9)
Requirement already satisfied: typing-extensions>=4.2.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from pydantic!=1.8,!=1.8.1,<1.11.0,>=1.7.4->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (4.3.0)
Requirement already satisfied: charset-normalizer<3,>=2 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (2.1.1)
Requirement already satisfied: idna<4,>=2.5 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (3.3)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (2022.6.15)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (1.26.12)
Requirement already satisfied: confection<1.0.0,>=0.0.1 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from thinc<8.2.0,>=8.1.8->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (0.0.4)
Requirement already satisfied: blis<0.8.0,>=0.7.8 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from thinc<8.2.0,>=8.1.8->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (0.7.9)
Requirement already satisfied: colorama in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from tqdm<5.0.0,>=4.38.0->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (0.4.6)
Requirement already satisfied: click<9.0.0,>=7.1.1 in c:\users\dghr201\appdata\roaming\python\python39\site-packages (from typer<0.8.0,>=0.3.0->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (8.1.3)
Requirement already satisfied: MarkupSafe>=2.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from jinja2->spacy<3.6.0,>=3.5.0->en-core-web-sm==3.5.0) (2.1.1)
Installing collected packages: en-core-web-sm
Successfully installed en-core-web-sm-3.5.0
[+] Download and installation successful
You can now load the package via spacy.load('en_core_web_sm')
2023-03-29 11:30:54.899847: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
2023-03-29 11:30:54.899900: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
2023-03-29 11:31:01.396641: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'nvcuda.dll'; dlerror: nvcuda.dll not found
2023-03-29 11:31:01.396675: W tensorflow/stream_executor/cuda/cuda_driver.cc:269] failed call to cuInit: UNKNOWN ERROR (303)
2023-03-29 11:31:01.406497: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:169] retrieving CUDA diagnostic information for host: DHR0201L
2023-03-29 11:31:01.406729: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:176] hostname: DHR0201L
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: You are using pip version 21.2.3; however, version 23.0.1 is available.
You should consider upgrading via the 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.
Code
# Import spacy
import spacy

# Instantiate the English model: nlp
nlp = spacy.load('en_core_web_sm', disable=['tagger', 'parser', 'matcher'])

# Create a new document: doc
doc = nlp(article)

# Print all of the found entities and their labels
for ent in doc.ents:
    print(ent.label_, ent.text)
ORG Apple
PERSON Uber
PERSON Travis Kalanick
ORG Uber
PERSON Tim Cook
ORG Apple
CARDINAL Millions
ORG Uber
LOC Silicon Valley’s
NORP democratic
ORG Yahoo
PERSON Marissa Mayer
MONEY 186
C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\spacy\pipeline\lemmatizer.py:211: UserWarning: [W108] The rule-based lemmatizer did not find POS annotation for one or more tokens. Check that your pipeline includes components that assign token.pos, typically 'tagger'+'attribute_ruler' or 'morphologizer'.
  warnings.warn(Warnings.W108)

Multilingual NER with polyglot

polyglot

NLP library which uses word vectors
vectors for many different languages (more than 130)

French NER with polyglot I

Code
!pip install pyicu
!pip install pycld2
!pip install morfessor
!polyglot download ner2.fr
!polyglot download embeddings2.fr
Collecting pyicu
  Using cached PyICU-2.10.2.tar.gz (255 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.10.1.tar.gz (255 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.10.tar.gz (255 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.9.tar.gz (305 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.8.1.tar.gz (304 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.8.tar.gz (299 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.7.4.tar.gz (298 kB)
  Using cached PyICU-2.7.3.tar.gz (295 kB)
  Using cached PyICU-2.7.2.tar.gz (293 kB)
  Using cached PyICU-2.7.1.tar.gz (189 kB)
  Using cached PyICU-2.7.tar.gz (189 kB)
  Using cached PyICU-2.6.tar.gz (233 kB)
  Using cached PyICU-2.5.tar.gz (225 kB)
  Using cached PyICU-2.4.3.tar.gz (219 kB)
  Using cached PyICU-2.4.2.tar.gz (219 kB)
  Using cached PyICU-2.4.1.tar.gz (219 kB)
  Using cached PyICU-2.4.tar.gz (219 kB)
  Using cached PyICU-2.3.1.tar.gz (214 kB)
  Using cached PyICU-2.3.tar.gz (214 kB)
  Using cached PyICU-2.2.tar.gz (211 kB)
  Using cached PyICU-2.1.tar.gz (203 kB)
  Using cached PyICU-2.0.6.tar.gz (203 kB)
  Using cached PyICU-2.0.5.tar.gz (203 kB)
  Using cached PyICU-2.0.4.tar.gz (202 kB)
  Using cached PyICU-2.0.3.tar.gz (201 kB)
  Using cached PyICU-2.0.2.tar.gz (194 kB)
  Using cached PyICU-2.0.1.tar.gz (194 kB)
  Using cached PyICU-2.0.tar.gz (194 kB)
  Using cached PyICU-1.9.8.tar.gz (183 kB)
  Using cached PyICU-1.9.7.tar.gz (183 kB)
  Using cached PyICU-1.9.6.tar.gz (183 kB)
  Using cached PyICU-1.9.5.tar.gz (181 kB)
  Using cached PyICU-1.9.4.tar.gz (181 kB)
Building wheels for collected packages: pyicu
  Building wheel for pyicu (setup.py): started
  Building wheel for pyicu (setup.py): finished with status 'error'
  Running setup.py clean for pyicu
Failed to build pyicu
Installing collected packages: pyicu
    Running setup.py install for pyicu: started
    Running setup.py install for pyicu: finished with status 'error'
Collecting pycld2
  Using cached pycld2-0.41.tar.gz (41.4 MB)
Building wheels for collected packages: pycld2
  Building wheel for pycld2 (setup.py): started
  Building wheel for pycld2 (setup.py): finished with status 'error'
  Running setup.py clean for pycld2
Failed to build pycld2
Installing collected packages: pycld2
    Running setup.py install for pycld2: started
    Running setup.py install for pycld2: finished with status 'error'
Requirement already satisfied: morfessor in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (2.0.6)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmp69rum_ge'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4f3bfc205a874daebe5ade04a040de3d
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 89, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 92, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 96, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-zgept4on\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-zgept4on\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-zgept4on\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 99, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/64/00/a531e119a97e54601f616f5061879ec2d4bb058d225014f9acf94b2970c3/PyICU-2.10.2.tar.gz#sha256=0c3309eea7fab6857507ace62403515b60fe096cbfb4f90d14f55ff75c5441c1 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmp69rum_ge' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmp8gh2bhps'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f258da3abe3449b2b80469ca0fbb6f8e
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 89, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 92, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 96, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-epgkffib\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-epgkffib\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-epgkffib\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 99, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/19/47/ca871546c4e6f69abc11fea271cfce7489c6f999a647f642ceb78df90831/PyICU-2.10.1.tar.gz#sha256=d67f2475d8b21172b5db99e23b2c8a7bf6c04d1097a73a52bb03287c7ace9092 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmp8gh2bhps' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpgakcvixc'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_d9fd5bb0e9fb4f1f8398248d11c1bec6
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 89, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 92, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 96, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-1hozphi5\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-1hozphi5\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-1hozphi5\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 99, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/bc/d5/32d875a6830a35d6efcabd6b62414f6df6ffbf16154ab8a4159864ea83c0/PyICU-2.10.tar.gz#sha256=99c24ca8edd356756a34e9f3c5e84f7376f426e7f9ea52aaae4d75b0e787af68 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpgakcvixc' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpvm8mz6yw'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_450d43cbab69482b8cdcce61972cbf74
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 63, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 66, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 69, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-4b_prqbg\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-4b_prqbg\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-4b_prqbg\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 71, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/11/76/9256430e729ad0dd4675a15a7bf0555b9085d1bea36083b9a1b095602f23/PyICU-2.9.tar.gz#sha256=3c29d6ce65546157117a1a347a303ecdfcf1a7591ed679fc88cdef4108845878 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpvm8mz6yw' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmp_knma_0g'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c89cf1a976964ecbb2c5bd1cdcc9422d
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 63, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 66, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 69, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-i_fi8_n7\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-i_fi8_n7\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-i_fi8_n7\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 71, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5c/d0/50e4319f07b0514a9da5dfdf65aa36c0782120c13b1d194a9c1a54cdc537/PyICU-2.8.1.tar.gz#sha256=f0b9549a87f87ba7c413f13679d137271e0b37f1f39b0109ace38257d4d148d6 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmp_knma_0g' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpziflsivi'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_0f04baa729e04eb98dda2d4cbaf0a7d3
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 63, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 66, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 69, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-m_5pk68d\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-m_5pk68d\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-m_5pk68d\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 71, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/1a/b6/ede5f19d79655898162afa778d2f38cbde04b0cccb8737c649cd5d3d38e0/PyICU-2.8.tar.gz#sha256=3d80de47045a8163db5aebc947c42b4d429eeea4f0c32af4f40b33981fa872b9 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpziflsivi' Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_8192e11056bb4c188f8c3f49f512cc52\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_8192e11056bb4c188f8c3f49f512cc52\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-frk4ghvt'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_8192e11056bb4c188f8c3f49f512cc52\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_8192e11056bb4c188f8c3f49f512cc52\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_8192e11056bb4c188f8c3f49f512cc52\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_8192e11056bb4c188f8c3f49f512cc52\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_8192e11056bb4c188f8c3f49f512cc52\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_8192e11056bb4c188f8c3f49f512cc52\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_8192e11056bb4c188f8c3f49f512cc52\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/6b/ef/d495df371dcbfc36dc68b029495bbc386f59e3c4c6c5f327fc8b9c52c8b1/PyICU-2.7.4.tar.gz#sha256=c0655302e2aea16f9acefe04152f74e5d7d70542e9e15c89ee8d763c8e097f56 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-hntvv52m'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_ac6bb3a8b65341eb81c65360752bd5b9\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/50/62/230bb78141a03cb3849a1f8ab390eed290a9430b3dabb496c51228271e0b/PyICU-2.7.3.tar.gz#sha256=0892f927b825e6027478f5b3cae52deecc0a1cba488da1ffb0fb299274bb61cb (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_caf53d483b4a48dcb917b746b63c4b58\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_caf53d483b4a48dcb917b746b63c4b58\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-05qt0ttm'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_caf53d483b4a48dcb917b746b63c4b58\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_caf53d483b4a48dcb917b746b63c4b58\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_caf53d483b4a48dcb917b746b63c4b58\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_caf53d483b4a48dcb917b746b63c4b58\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_caf53d483b4a48dcb917b746b63c4b58\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_caf53d483b4a48dcb917b746b63c4b58\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_caf53d483b4a48dcb917b746b63c4b58\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/17/0f/9d6b7eb01650960239a5d4dc21cd6e7a96921807c043d287bae4b2f440e1/PyICU-2.7.2.tar.gz#sha256=1382869b22d91cc99274f9b525fa7d9199b44d9007ff0036a09747839a01e9dc (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_95c15cf8784d4c9da047954a96b37cd6\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_95c15cf8784d4c9da047954a96b37cd6\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-ubghqrdm'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_95c15cf8784d4c9da047954a96b37cd6\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_95c15cf8784d4c9da047954a96b37cd6\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_95c15cf8784d4c9da047954a96b37cd6\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_95c15cf8784d4c9da047954a96b37cd6\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_95c15cf8784d4c9da047954a96b37cd6\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_95c15cf8784d4c9da047954a96b37cd6\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_95c15cf8784d4c9da047954a96b37cd6\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/76/5d/6318f86c81665ddccc4a14408525297aec0c73a71a14994a3cbf822aef2a/PyICU-2.7.1.tar.gz#sha256=23191ec5cae0cf6172f84d3d06010d5c348b8d4d5428edbed4f817beecff2642 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_3b7b309e719a4c82990d5511bed783c8\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_3b7b309e719a4c82990d5511bed783c8\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-m7rkeehe'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_3b7b309e719a4c82990d5511bed783c8\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_3b7b309e719a4c82990d5511bed783c8\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_3b7b309e719a4c82990d5511bed783c8\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_3b7b309e719a4c82990d5511bed783c8\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_3b7b309e719a4c82990d5511bed783c8\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_3b7b309e719a4c82990d5511bed783c8\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_3b7b309e719a4c82990d5511bed783c8\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/3c/67/c5414fbeeb65d627ea15928b821a39ad42e9ff355cb3b63898b8020f503c/PyICU-2.7.tar.gz#sha256=56a0aae5f69e1191b0f466bde29f72374caadc8fa966a44ec07429afe5f68cd1 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f036c917b8d941d6b4207966b60bcd1d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f036c917b8d941d6b4207966b60bcd1d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-vvgpcad9'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f036c917b8d941d6b4207966b60bcd1d\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f036c917b8d941d6b4207966b60bcd1d\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f036c917b8d941d6b4207966b60bcd1d\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f036c917b8d941d6b4207966b60bcd1d\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f036c917b8d941d6b4207966b60bcd1d\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f036c917b8d941d6b4207966b60bcd1d\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f036c917b8d941d6b4207966b60bcd1d\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/31/46/fa08c8efae2951e67681ec24319f789fc1a74e2096dd74373e34c79319de/PyICU-2.6.tar.gz#sha256=a9a5bf6833360f8f69e9375b91c1a7dd6e0c9157a42aee5bb7d6891804d96371 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_4a363ac13606405d98a7820e5fe45034\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_4a363ac13606405d98a7820e5fe45034\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-hcsiz87a'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a363ac13606405d98a7820e5fe45034\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a363ac13606405d98a7820e5fe45034\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a363ac13606405d98a7820e5fe45034\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a363ac13606405d98a7820e5fe45034\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a363ac13606405d98a7820e5fe45034\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a363ac13606405d98a7820e5fe45034\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a363ac13606405d98a7820e5fe45034\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5a/99/c48c816095208bf3f4936ff67e571621fbddef461303a35a076f234e31f6/PyICU-2.5.tar.gz#sha256=a120b68c53f769f37bfb70b7e84ca12c3f4ab1e4df43e87a02dff05ae472cdbc (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_481e23fcb9bf413382c573964b9c25c4\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_481e23fcb9bf413382c573964b9c25c4\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-rokfpbyb'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_481e23fcb9bf413382c573964b9c25c4\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_481e23fcb9bf413382c573964b9c25c4\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_481e23fcb9bf413382c573964b9c25c4\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_481e23fcb9bf413382c573964b9c25c4\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_481e23fcb9bf413382c573964b9c25c4\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_481e23fcb9bf413382c573964b9c25c4\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_481e23fcb9bf413382c573964b9c25c4\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/57/b2/66a58057a537527d7307576f2d32f239cc411b911401276d6922caa94755/PyICU-2.4.3.tar.gz#sha256=c0ca7741ad0e8b20781578a876dac0357b982b7762ccc2aae116f0b18ce1ab1c (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_87bddacf2f084aa3b23b4da449ffc630\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_87bddacf2f084aa3b23b4da449ffc630\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-m3ht6104'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_87bddacf2f084aa3b23b4da449ffc630\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_87bddacf2f084aa3b23b4da449ffc630\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_87bddacf2f084aa3b23b4da449ffc630\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_87bddacf2f084aa3b23b4da449ffc630\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_87bddacf2f084aa3b23b4da449ffc630\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_87bddacf2f084aa3b23b4da449ffc630\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_87bddacf2f084aa3b23b4da449ffc630\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/95/0c/0fb09019efb65a29789ec5538f8e521b8f548da6935a3a474e19fbf2ea4d/PyICU-2.4.2.tar.gz#sha256=48c43424b67090c4028d8743132d141d8477f390f93e26c2cb67c26485622c20 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_021d498c0f24400dac9296034bc19af9\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_021d498c0f24400dac9296034bc19af9\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-wrqbe80l'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_021d498c0f24400dac9296034bc19af9\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_021d498c0f24400dac9296034bc19af9\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_021d498c0f24400dac9296034bc19af9\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_021d498c0f24400dac9296034bc19af9\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_021d498c0f24400dac9296034bc19af9\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_021d498c0f24400dac9296034bc19af9\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_021d498c0f24400dac9296034bc19af9\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/77/a2/7c22b63c3cab7e41cbf4a930b033f5fc3e47bc5b6b673020f5ba58cecdf2/PyICU-2.4.1.tar.gz#sha256=00727a2d85c6a62ce78846a5f80bfa79bd26c35126f9cc793d269b336fd2ef47 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_9c4e31056a9e4b24996f20692cdd9174\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_9c4e31056a9e4b24996f20692cdd9174\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-k2snviu9'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9c4e31056a9e4b24996f20692cdd9174\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9c4e31056a9e4b24996f20692cdd9174\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9c4e31056a9e4b24996f20692cdd9174\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9c4e31056a9e4b24996f20692cdd9174\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9c4e31056a9e4b24996f20692cdd9174\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9c4e31056a9e4b24996f20692cdd9174\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9c4e31056a9e4b24996f20692cdd9174\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/50/65/974ccd4e01f6517f150e5841518afdec64fa0e6993e4b7a3a6291b327962/PyICU-2.4.tar.gz#sha256=8d1907c1f8659b77f5b62fe81c62ac91731c8a56cb3ea0af1dc4db59f8326242 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-07obwzo3'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_2bb1699f9edf41ebb6c90b73e0fb078e\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/e9/35/211ffb949c68e688ade7d40426de030a24eaec4b6c45330eeb9c0285f43a/PyICU-2.3.1.tar.gz#sha256=ddb2b453853b4c25db382bc5e8c4cde09b3f4696ef1e1494f8294e174f459cf4 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-_qb_qh03'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_c82d41f0ad7646cdb1224e4c7b14195d\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/87/10/fdf5842f42834f6e3141668b607c07bc3c94de39acf582c3d4015e7a7fc5/PyICU-2.3.tar.gz#sha256=419d389b014ee48f31014920f300c842df0770a283ab1fb4de82a6af334cac4d (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_870700d23db3457a825ed6f3ae9c739a\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_870700d23db3457a825ed6f3ae9c739a\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-xjpg6d9t'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_870700d23db3457a825ed6f3ae9c739a\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_870700d23db3457a825ed6f3ae9c739a\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_870700d23db3457a825ed6f3ae9c739a\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_870700d23db3457a825ed6f3ae9c739a\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/c2/15/0af20b540c828943b6ffea5677c86e908dcac108813b522adebb75c827c1/PyICU-2.2.tar.gz#sha256=ea6ae8bb6845e2e145cf03cd80cf258487b80fca3669ae8a7bf0c5105df10973 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_1264f1bc58604512b90ab78eb694f041\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_1264f1bc58604512b90ab78eb694f041\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-igwjlny4'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_1264f1bc58604512b90ab78eb694f041\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_1264f1bc58604512b90ab78eb694f041\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_1264f1bc58604512b90ab78eb694f041\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_1264f1bc58604512b90ab78eb694f041\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/1b/28/9a92361dfdd3e967409885dc9829643d005d8950bba04f0a60fc238f7fd9/PyICU-2.1.tar.gz#sha256=5fdab441c91adf9ceb6373dfdca18fbde3676f906babda45d85cf0fa8e43fd8a (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_9f1a4802a11b4614870873b18748e7cc\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_9f1a4802a11b4614870873b18748e7cc\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-2xhn5d1_'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9f1a4802a11b4614870873b18748e7cc\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9f1a4802a11b4614870873b18748e7cc\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9f1a4802a11b4614870873b18748e7cc\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_9f1a4802a11b4614870873b18748e7cc\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/9a/bb/724e7dd095c87398664b8eea91fdfd2d5ea9782949e13f2f28bcd5e11a0e/PyICU-2.0.6.tar.gz#sha256=dd233737d9fd0399ac5a06382c3c387c257c17bae80aef4e15195bf63d70db67 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_275abcb0b8fa4892883d6517ef3f3970\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_275abcb0b8fa4892883d6517ef3f3970\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-bxs89k8l'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_275abcb0b8fa4892883d6517ef3f3970\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_275abcb0b8fa4892883d6517ef3f3970\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_275abcb0b8fa4892883d6517ef3f3970\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_275abcb0b8fa4892883d6517ef3f3970\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/b9/26/9e993785441f90595e0aad169c1d011e941c3995c207838cc25702e91c5b/PyICU-2.0.5.tar.gz#sha256=9122ff2f813bced986e03679f4c6d24f4d09feb3dc85d2a47f92410797275222 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_bd3c8d1b24b74e0a97874448b7801333\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_bd3c8d1b24b74e0a97874448b7801333\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-1l25o8rp'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_bd3c8d1b24b74e0a97874448b7801333\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_bd3c8d1b24b74e0a97874448b7801333\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_bd3c8d1b24b74e0a97874448b7801333\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_bd3c8d1b24b74e0a97874448b7801333\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/52/95/72d75fba16401bd452ae581c3661bbf2e588d6068a9a726726bf7f6b16f5/PyICU-2.0.4.tar.gz#sha256=e074bfbe74919a21bc2ed8e4f98006711888b11efa0e3414ad084c75c340e1bd (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_09c391b94d4343308041c250b553cc54\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_09c391b94d4343308041c250b553cc54\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-c3s275s1'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_09c391b94d4343308041c250b553cc54\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_09c391b94d4343308041c250b553cc54\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_09c391b94d4343308041c250b553cc54\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_09c391b94d4343308041c250b553cc54\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/bb/ef/3a7fcbba81bfd213e479131ae21445a2ddd14b46d70ef0109640b580bc5d/PyICU-2.0.3.tar.gz#sha256=c452d14409d93819a398a93d27d5d58d6236af690d537eb2d76c8305e8d0fa5f (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_4a2e3f000600431aa3fdd9dd883d1ae6\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_4a2e3f000600431aa3fdd9dd883d1ae6\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-xmsy01lj'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a2e3f000600431aa3fdd9dd883d1ae6\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a2e3f000600431aa3fdd9dd883d1ae6\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a2e3f000600431aa3fdd9dd883d1ae6\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_4a2e3f000600431aa3fdd9dd883d1ae6\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/57/c2/565670f72e3955a3935118be0e44155f8ba823715c45cca123034585ff79/PyICU-2.0.2.tar.gz#sha256=dd8fedfb7e790fb829d0051a27295770146447e4176cb1b6425992e9b5016f10 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_63c5b5ace00d403c91304558b3b2b979\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_63c5b5ace00d403c91304558b3b2b979\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-zlhyzfgg'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_63c5b5ace00d403c91304558b3b2b979\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_63c5b5ace00d403c91304558b3b2b979\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_63c5b5ace00d403c91304558b3b2b979\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_63c5b5ace00d403c91304558b3b2b979\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/78/3c/1541fb461e4564676650cf1842fe5dd538b7a89443291592d24788ff1e65/PyICU-2.0.1.tar.gz#sha256=230cc9b28b445da9199e09120593bf6439a55bcac2c44742c612d56becf4366f (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_202a87cca7e346b296aa80f06d18f870\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_202a87cca7e346b296aa80f06d18f870\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-frtdap1d'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_202a87cca7e346b296aa80f06d18f870\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_202a87cca7e346b296aa80f06d18f870\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_202a87cca7e346b296aa80f06d18f870\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_202a87cca7e346b296aa80f06d18f870\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/12/59/cf242872420615cbcee0a74fe69e2e9c3687a3c11142535569db531571a9/PyICU-2.0.tar.gz#sha256=fff7a9adbfc8501a3d61d0de4a6e6a79b45866c4f41df8b0d95dff7e267b337e (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_443266fedbe94a77818650c21dc91e0c\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_443266fedbe94a77818650c21dc91e0c\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-poocv7zr'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_443266fedbe94a77818650c21dc91e0c\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_443266fedbe94a77818650c21dc91e0c\setup.py", line 12, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_443266fedbe94a77818650c21dc91e0c\setup.py", line 26, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_443266fedbe94a77818650c21dc91e0c\setup.py", line 30, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/17/13/12b5631b67fd27b8827fb805df5015c32406ec739d700af68ab49da1203f/PyICU-1.9.8.tar.gz#sha256=cd76e3fe73e96e0b9806bc036ad388b2bbba572762c699bc911ccedbc425df16 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_96c61d7b32e94105a754c75e432de677\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_96c61d7b32e94105a754c75e432de677\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-qk7caj4l'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_96c61d7b32e94105a754c75e432de677\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_96c61d7b32e94105a754c75e432de677\setup.py", line 12, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_96c61d7b32e94105a754c75e432de677\setup.py", line 26, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_96c61d7b32e94105a754c75e432de677\setup.py", line 30, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/6e/88/f42a1297909ca6d9113ba37b37067011ae29432fe592fdd98cf52ad23b77/PyICU-1.9.7.tar.gz#sha256=db27cd1cc150b879c5465872bec7fdaf340eca140aa922be03891d5b9f855b61 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_e61e972d7a2646fd9878d2a1e0a5f738\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_e61e972d7a2646fd9878d2a1e0a5f738\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-k9pyvesm'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_e61e972d7a2646fd9878d2a1e0a5f738\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_e61e972d7a2646fd9878d2a1e0a5f738\setup.py", line 12, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_e61e972d7a2646fd9878d2a1e0a5f738\setup.py", line 26, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_e61e972d7a2646fd9878d2a1e0a5f738\setup.py", line 28, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/bc/78/f4e26f67c9b6b9074baa576ae67947e42fb86039199a65e9ab91ddb51d26/PyICU-1.9.6.tar.gz#sha256=c5c2134f7ad5aa939a899633816f52d8921e787efd4e8d7efb5f450fe10f2550 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f88c1af0c35348e7b6dd55c5c004aacf\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f88c1af0c35348e7b6dd55c5c004aacf\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-2p1kjkr7'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f88c1af0c35348e7b6dd55c5c004aacf\
    Complete output (13 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f88c1af0c35348e7b6dd55c5c004aacf\setup.py", line 11, in <module>
        ICU_VERSION = subprocess.check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/a2/9f/1947f288143191b903e58633ee597cb98bc284de28dafb1231b6f8b67b99/PyICU-1.9.5.tar.gz#sha256=73b052b800861fae3281dbaf9c92d12a81cabf3d31912d94c51862e093ef359b (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f907aa97312d4e518263daa281b555c2\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f907aa97312d4e518263daa281b555c2\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\dghr201\AppData\Local\Temp\pip-wheel-eq7chf2t'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f907aa97312d4e518263daa281b555c2\
  Complete output (16 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build\lib.win-amd64-3.9
  copying icu.py -> build\lib.win-amd64-3.9
  copying PyICU.py -> build\lib.win-amd64-3.9
  copying docs.py -> build\lib.win-amd64-3.9
  running build_ext
  building '_icu' extension
  creating build\temp.win-amd64-3.9
  creating build\temp.win-amd64-3.9\Release
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -Ic:/icu/include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /Tp_icu.cpp /Fobuild\temp.win-amd64-3.9\Release\_icu.obj /Zc:wchar_t /EHsc /DPYICU_VER=\"1.9.4\"
  _icu.cpp
  C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f907aa97312d4e518263daa281b555c2\common.h(90): fatal error C1083: Cannot open include file: 'unicode/utypes.h': No such file or directory
  error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2
  ----------------------------------------
  ERROR: Failed building wheel for pyicu
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f907aa97312d4e518263daa281b555c2\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f907aa97312d4e518263daa281b555c2\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\dghr201\AppData\Local\Temp\pip-record-vwry6q8a\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\Include\pyicu'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f907aa97312d4e518263daa281b555c2\
    Complete output (16 lines):
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-amd64-3.9
    copying icu.py -> build\lib.win-amd64-3.9
    copying PyICU.py -> build\lib.win-amd64-3.9
    copying docs.py -> build\lib.win-amd64-3.9
    running build_ext
    building '_icu' extension
    creating build\temp.win-amd64-3.9
    creating build\temp.win-amd64-3.9\Release
    C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -Ic:/icu/include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /Tp_icu.cpp /Fobuild\temp.win-amd64-3.9\Release\_icu.obj /Zc:wchar_t /EHsc /DPYICU_VER=\"1.9.4\"
    _icu.cpp
    C:\Users\dghr201\AppData\Local\Temp\pip-install-4u4h_9bt\pyicu_f907aa97312d4e518263daa281b555c2\common.h(90): fatal error C1083: Cannot open include file: 'unicode/utypes.h': No such file or directory
    error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2
    ----------------------------------------
ERROR: Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f907aa97312d4e518263daa281b555c2\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-4u4h_9bt\\pyicu_f907aa97312d4e518263daa281b555c2\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\dghr201\AppData\Local\Temp\pip-record-vwry6q8a\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\Include\pyicu' Check the logs for full command output.
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: You are using pip version 21.2.3; however, version 23.0.1 is available.
You should consider upgrading via the 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-atpmrhxy\\pycld2_ac6694dc5fd9476b9a04559776a20c7d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-atpmrhxy\\pycld2_ac6694dc5fd9476b9a04559776a20c7d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\dghr201\AppData\Local\Temp\pip-wheel-z148lwik'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\
  Complete output (39 lines):
  running bdist_wheel
  The [wheel] section is deprecated. Use [bdist_wheel] instead.
  running build
  running build_py
  creating build
  creating build\lib.win-amd64-3.9
  creating build\lib.win-amd64-3.9\pycld2
  copying pycld2\__init__.py -> build\lib.win-amd64-3.9\pycld2
  running build_ext
  building 'pycld2._pycld2' extension
  creating build\temp.win-amd64-3.9
  creating build\temp.win-amd64-3.9\Release
  creating build\temp.win-amd64-3.9\Release\Users
  creating build\temp.win-amd64-3.9\Release\Users\dghr201
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\encodings.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\encodings.obj -w -O2 -m64 -fPIC
  cl : Command line warning D9025 : overriding '/W3' with '/w'
  cl : Command line warning D9002 : ignoring unknown option '-m64'
  cl : Command line warning D9002 : ignoring unknown option '-fPIC'
  encodings.cc
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\pycldmodule.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\pycldmodule.obj -w -O2 -m64 -fPIC
  cl : Command line warning D9025 : overriding '/W3' with '/w'
  cl : Command line warning D9002 : ignoring unknown option '-m64'
  cl : Command line warning D9002 : ignoring unknown option '-fPIC'
  pycldmodule.cc
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal/cld2_generated_cjk_compatible.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal/cld2_generated_cjk_compatible.obj -w -O2 -m64 -fPIC
  cl : Command line warning D9025 : overriding '/W3' with '/w'
  cl : Command line warning D9002 : ignoring unknown option '-m64'
  cl : Command line warning D9002 : ignoring unknown option '-fPIC'
  cld2_generated_cjk_compatible.cc
  C:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal\cld2_generated_cjk_compatible.cc : fatal error C1083: Cannot open compiler generated file: '': Invalid argument
  error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe' failed with exit code 1
  ----------------------------------------
  ERROR: Failed building wheel for pycld2
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-atpmrhxy\\pycld2_ac6694dc5fd9476b9a04559776a20c7d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-atpmrhxy\\pycld2_ac6694dc5fd9476b9a04559776a20c7d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\dghr201\AppData\Local\Temp\pip-record-aayzv64v\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\Include\pycld2'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\
    Complete output (38 lines):
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-amd64-3.9
    creating build\lib.win-amd64-3.9\pycld2
    copying pycld2\__init__.py -> build\lib.win-amd64-3.9\pycld2
    running build_ext
    building 'pycld2._pycld2' extension
    creating build\temp.win-amd64-3.9
    creating build\temp.win-amd64-3.9\Release
    creating build\temp.win-amd64-3.9\Release\Users
    creating build\temp.win-amd64-3.9\Release\Users\dghr201
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2
    creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal
    C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\encodings.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\encodings.obj -w -O2 -m64 -fPIC
    cl : Command line warning D9025 : overriding '/W3' with '/w'
    cl : Command line warning D9002 : ignoring unknown option '-m64'
    cl : Command line warning D9002 : ignoring unknown option '-fPIC'
    encodings.cc
    C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\pycldmodule.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\bindings\pycldmodule.obj -w -O2 -m64 -fPIC
    cl : Command line warning D9025 : overriding '/W3' with '/w'
    cl : Command line warning D9002 : ignoring unknown option '-m64'
    cl : Command line warning D9002 : ignoring unknown option '-fPIC'
    pycldmodule.cc
    C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal/cld2_generated_cjk_compatible.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal/cld2_generated_cjk_compatible.obj -w -O2 -m64 -fPIC
    cl : Command line warning D9025 : overriding '/W3' with '/w'
    cl : Command line warning D9002 : ignoring unknown option '-m64'
    cl : Command line warning D9002 : ignoring unknown option '-fPIC'
    cld2_generated_cjk_compatible.cc
    C:\Users\dghr201\AppData\Local\Temp\pip-install-atpmrhxy\pycld2_ac6694dc5fd9476b9a04559776a20c7d\cld2\internal\cld2_generated_cjk_compatible.cc : fatal error C1083: Cannot open compiler generated file: '': Invalid argument
    error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe' failed with exit code 1
    ----------------------------------------
ERROR: Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-atpmrhxy\\pycld2_ac6694dc5fd9476b9a04559776a20c7d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-atpmrhxy\\pycld2_ac6694dc5fd9476b9a04559776a20c7d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\dghr201\AppData\Local\Temp\pip-record-aayzv64v\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\Include\pycld2' Check the logs for full command output.
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: You are using pip version 21.2.3; however, version 23.0.1 is available.
You should consider upgrading via the 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: You are using pip version 21.2.3; however, version 23.0.1 is available.
You should consider upgrading via the 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.
'polyglot' is not recognized as an internal or external command,
operable program or batch file.
'polyglot' is not recognized as an internal or external command,
operable program or batch file.
Code
!pip install polyglot.text
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
ERROR: Could not find a version that satisfies the requirement polyglot.text (from versions: none)
ERROR: No matching distribution found for polyglot.text
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: You are using pip version 21.2.3; however, version 23.0.1 is available.
You should consider upgrading via the 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.
Code
with open('dataset/News articles/french.txt', 'r',encoding="utf-8") as file:
    article = file.read()
Code
!pip install polyglot
Collecting polyglot
  Using cached polyglot-16.7.4.tar.gz (126 kB)
  Using cached polyglot-15.10.03-py2.py3-none-any.whl (54 kB)
Collecting futures>=2.1.6
  Downloading futures-3.0.5.tar.gz (25 kB)
  Downloading futures-3.0.4.tar.gz (25 kB)
  Downloading futures-3.0.3.tar.gz (24 kB)
  Downloading futures-3.0.2.tar.gz (24 kB)
  Downloading futures-3.0.1.tar.gz (24 kB)
  Downloading futures-3.0.0.tar.gz (24 kB)
  Downloading futures-2.2.0-py2.py3-none-any.whl (16 kB)
Collecting pycld2>=0.3
  Using cached pycld2-0.41.tar.gz (41.4 MB)
Requirement already satisfied: morfessor>=2.0.2a1 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from polyglot) (2.0.6)
Requirement already satisfied: wheel>=0.23.0 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from polyglot) (0.37.1)
Requirement already satisfied: six>=1.7.3 in c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages (from polyglot) (1.16.0)
Collecting PyICU>=1.8
  Using cached PyICU-2.10.2.tar.gz (255 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.10.1.tar.gz (255 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.10.tar.gz (255 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.9.tar.gz (305 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.8.1.tar.gz (304 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.8.tar.gz (299 kB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  Using cached PyICU-2.7.4.tar.gz (298 kB)
  Using cached PyICU-2.7.3.tar.gz (295 kB)
  Using cached PyICU-2.7.2.tar.gz (293 kB)
  Using cached PyICU-2.7.1.tar.gz (189 kB)
  Using cached PyICU-2.7.tar.gz (189 kB)
  Using cached PyICU-2.6.tar.gz (233 kB)
  Using cached PyICU-2.5.tar.gz (225 kB)
  Using cached PyICU-2.4.3.tar.gz (219 kB)
  Using cached PyICU-2.4.2.tar.gz (219 kB)
  Using cached PyICU-2.4.1.tar.gz (219 kB)
  Using cached PyICU-2.4.tar.gz (219 kB)
  Using cached PyICU-2.3.1.tar.gz (214 kB)
  Using cached PyICU-2.3.tar.gz (214 kB)
  Using cached PyICU-2.2.tar.gz (211 kB)
  Using cached PyICU-2.1.tar.gz (203 kB)
  Using cached PyICU-2.0.6.tar.gz (203 kB)
  Using cached PyICU-2.0.5.tar.gz (203 kB)
  Using cached PyICU-2.0.4.tar.gz (202 kB)
  Using cached PyICU-2.0.3.tar.gz (201 kB)
  Using cached PyICU-2.0.2.tar.gz (194 kB)
  Using cached PyICU-2.0.1.tar.gz (194 kB)
  Using cached PyICU-2.0.tar.gz (194 kB)
  Using cached PyICU-1.9.8.tar.gz (183 kB)
  Using cached PyICU-1.9.7.tar.gz (183 kB)
  Using cached PyICU-1.9.6.tar.gz (183 kB)
  Using cached PyICU-1.9.5.tar.gz (181 kB)
  Using cached PyICU-1.9.4.tar.gz (181 kB)
Building wheels for collected packages: pycld2, PyICU
  Building wheel for pycld2 (setup.py): started
  Building wheel for pycld2 (setup.py): finished with status 'error'
  Running setup.py clean for pycld2
  Building wheel for PyICU (setup.py): started
  Building wheel for PyICU (setup.py): finished with status 'error'
  Running setup.py clean for PyICU
Failed to build pycld2 PyICU
Installing collected packages: PyICU, pycld2, futures, polyglot
    Running setup.py install for PyICU: started
    Running setup.py install for PyICU: finished with status 'error'
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\polyglot_23176ed948524228a2191c4883a7f415\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\polyglot_23176ed948524228a2191c4883a7f415\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-_dy5waxt'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\polyglot_23176ed948524228a2191c4883a7f415\
    Complete output (7 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\polyglot_23176ed948524228a2191c4883a7f415\setup.py", line 15, in <module>
        readme = readme_file.read()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\encodings\cp1252.py", line 23, in decode
        return codecs.charmap_decode(input,self.errors,decoding_table)[0]
    UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 4941: character maps to <undefined>
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/e7/98/e24e2489114c5112b083714277204d92d372f5bbe00d5507acf40370edb9/polyglot-16.7.4.tar.gz#sha256=f7d9cca9a212622548e9416fb89f1238b994b8860ef49e03b7c82c67f9b6269b (from https://pypi.org/simple/polyglot/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_0374122fea634ee68514b91f0d508593\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_0374122fea634ee68514b91f0d508593\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-rr0oxh63'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_0374122fea634ee68514b91f0d508593\
    Complete output (24 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\__init__.py", line 18, in <module>
        from setuptools.dist import Distribution
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\dist.py", line 32, in <module>
        from setuptools.extern.more_itertools import unique_everseen
      File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
      File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
      File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
      File "<frozen importlib._bootstrap>", line 565, in module_from_spec
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 52, in create_module
        return self.load_module(spec.name)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 37, in load_module
        __import__(extant)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\__init__.py", line 1, in <module>
        from .more import *  # noqa
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\more.py", line 5, in <module>
        from concurrent.futures import ThreadPoolExecutor
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_0374122fea634ee68514b91f0d508593\concurrent\futures\__init__.py", line 8, in <module>
        from concurrent.futures._base import (FIRST_COMPLETED,
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_0374122fea634ee68514b91f0d508593\concurrent\futures\_base.py", line 357
        raise type(self._exception), self._exception, self._traceback
                                   ^
    SyntaxError: invalid syntax
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/55/db/97c1ca37edab586a1ae03d6892b6633d8eaa23b23ac40c7e5bbc55423c78/futures-3.0.5.tar.gz#sha256=0542525145d5afc984c88f914a0c85c77527f65946617edb5274f72406f981df (from https://pypi.org/simple/futures/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_1f9ae6c5bb904895853796e9609de721\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_1f9ae6c5bb904895853796e9609de721\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-m7fr1_91'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_1f9ae6c5bb904895853796e9609de721\
    Complete output (24 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\__init__.py", line 18, in <module>
        from setuptools.dist import Distribution
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\dist.py", line 32, in <module>
        from setuptools.extern.more_itertools import unique_everseen
      File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
      File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
      File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
      File "<frozen importlib._bootstrap>", line 565, in module_from_spec
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 52, in create_module
        return self.load_module(spec.name)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 37, in load_module
        __import__(extant)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\__init__.py", line 1, in <module>
        from .more import *  # noqa
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\more.py", line 5, in <module>
        from concurrent.futures import ThreadPoolExecutor
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_1f9ae6c5bb904895853796e9609de721\concurrent\futures\__init__.py", line 8, in <module>
        from concurrent.futures._base import (FIRST_COMPLETED,
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_1f9ae6c5bb904895853796e9609de721\concurrent\futures\_base.py", line 357
        raise type(self._exception), self._exception, self._traceback
                                   ^
    SyntaxError: invalid syntax
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/8d/73/b5fff618482bc06c9711e7cdc0d5d7eb1904d35898f48f2d7f9696b08bef/futures-3.0.4.tar.gz#sha256=19485d83f7bd2151c0aeaf88fbba3ee50dadfb222ffc3b66a344ef4952b782a3 (from https://pypi.org/simple/futures/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_c6cb70fc49c54000912a0164e105c83d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_c6cb70fc49c54000912a0164e105c83d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-tzvm4j7p'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_c6cb70fc49c54000912a0164e105c83d\
    Complete output (24 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\__init__.py", line 18, in <module>
        from setuptools.dist import Distribution
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\dist.py", line 32, in <module>
        from setuptools.extern.more_itertools import unique_everseen
      File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
      File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
      File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
      File "<frozen importlib._bootstrap>", line 565, in module_from_spec
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 52, in create_module
        return self.load_module(spec.name)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 37, in load_module
        __import__(extant)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\__init__.py", line 1, in <module>
        from .more import *  # noqa
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\more.py", line 5, in <module>
        from concurrent.futures import ThreadPoolExecutor
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_c6cb70fc49c54000912a0164e105c83d\concurrent\futures\__init__.py", line 8, in <module>
        from concurrent.futures._base import (FIRST_COMPLETED,
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_c6cb70fc49c54000912a0164e105c83d\concurrent\futures\_base.py", line 355
        raise type(self._exception), self._exception, self._traceback
                                   ^
    SyntaxError: invalid syntax
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/4c/dc/f9473006d4c9c52d4a4e977173fbcbfb1a8ef3a57e32e885edf994fd4a45/futures-3.0.3.tar.gz#sha256=2fe2342bb4fe8b8e217f0d21b5921cbe5408bf966d9f92025e707e881b198bed (from https://pypi.org/simple/futures/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_a1eb6bb1a9874ec3a8b4adc0dd461b28\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_a1eb6bb1a9874ec3a8b4adc0dd461b28\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-fx7hubee'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_a1eb6bb1a9874ec3a8b4adc0dd461b28\
    Complete output (24 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\__init__.py", line 18, in <module>
        from setuptools.dist import Distribution
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\dist.py", line 32, in <module>
        from setuptools.extern.more_itertools import unique_everseen
      File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
      File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
      File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
      File "<frozen importlib._bootstrap>", line 565, in module_from_spec
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 52, in create_module
        return self.load_module(spec.name)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 37, in load_module
        __import__(extant)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\__init__.py", line 1, in <module>
        from .more import *  # noqa
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\more.py", line 5, in <module>
        from concurrent.futures import ThreadPoolExecutor
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_a1eb6bb1a9874ec3a8b4adc0dd461b28\concurrent\futures\__init__.py", line 8, in <module>
        from concurrent.futures._base import (FIRST_COMPLETED,
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_a1eb6bb1a9874ec3a8b4adc0dd461b28\concurrent\futures\_base.py", line 355
        raise type(self._exception), self._exception, self._traceback
                                   ^
    SyntaxError: invalid syntax
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/f8/e7/fc0fcbeb9193ba2d4de00b065e7fd5aecd0679e93ce95a07322b2b1434f4/futures-3.0.2.tar.gz#sha256=dc3fc91508e49e0fd2f8625f0132d16e49c80f882e7e1d565c56b0d5dfbae257 (from https://pypi.org/simple/futures/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_6e3d647927dd4e4ca90981e89bd4bb70\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_6e3d647927dd4e4ca90981e89bd4bb70\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-kndqa8bi'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_6e3d647927dd4e4ca90981e89bd4bb70\
    Complete output (24 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\__init__.py", line 18, in <module>
        from setuptools.dist import Distribution
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\dist.py", line 32, in <module>
        from setuptools.extern.more_itertools import unique_everseen
      File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
      File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
      File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
      File "<frozen importlib._bootstrap>", line 565, in module_from_spec
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 52, in create_module
        return self.load_module(spec.name)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 37, in load_module
        __import__(extant)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\__init__.py", line 1, in <module>
        from .more import *  # noqa
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\more.py", line 5, in <module>
        from concurrent.futures import ThreadPoolExecutor
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_6e3d647927dd4e4ca90981e89bd4bb70\concurrent\futures\__init__.py", line 8, in <module>
        from concurrent.futures._base import (FIRST_COMPLETED,
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_6e3d647927dd4e4ca90981e89bd4bb70\concurrent\futures\_base.py", line 355
        raise type(self._exception), self._exception, self._traceback
                                   ^
    SyntaxError: invalid syntax
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/b2/2c/6b6a57379e47031c6f52e625e0e2b8f6702a8d1f61b6e0daee391e82c187/futures-3.0.1.tar.gz#sha256=f78f2ef458639d72a625cf9c7643cf5442bb222ac11c12bcc445c6ad1cd862e2 (from https://pypi.org/simple/futures/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_14dd992b1b4b430bb283c1b4f4eb1789\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\futures_14dd992b1b4b430bb283c1b4f4eb1789\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-3rzypoco'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_14dd992b1b4b430bb283c1b4f4eb1789\
    Complete output (24 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\__init__.py", line 18, in <module>
        from setuptools.dist import Distribution
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\dist.py", line 32, in <module>
        from setuptools.extern.more_itertools import unique_everseen
      File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
      File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
      File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
      File "<frozen importlib._bootstrap>", line 565, in module_from_spec
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 52, in create_module
        return self.load_module(spec.name)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\extern\__init__.py", line 37, in load_module
        __import__(extant)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\__init__.py", line 1, in <module>
        from .more import *  # noqa
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\setuptools\_vendor\more_itertools\more.py", line 5, in <module>
        from concurrent.futures import ThreadPoolExecutor
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_14dd992b1b4b430bb283c1b4f4eb1789\concurrent\futures\__init__.py", line 8, in <module>
        from concurrent.futures._base import (FIRST_COMPLETED,
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\futures_14dd992b1b4b430bb283c1b4f4eb1789\concurrent\futures\_base.py", line 354
        raise type(self._exception), self._exception, self._traceback
                                   ^
    SyntaxError: invalid syntax
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ea/c9/35287369718fc05059e7a9d0d73c53745fe981010b4185b3858e7d46eff1/futures-3.0.0.tar.gz#sha256=d9cd7bb09aa01f0e4940af64c31fbd7045098b7b4354420d7838ea39e8b86ee3 (from https://pypi.org/simple/futures/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpg3e1hj92'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a8b2c08ef13944c9981f4a90f9723de6
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 89, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 92, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 96, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-584oaml9\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-584oaml9\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-584oaml9\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 99, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/64/00/a531e119a97e54601f616f5061879ec2d4bb058d225014f9acf94b2970c3/PyICU-2.10.2.tar.gz#sha256=0c3309eea7fab6857507ace62403515b60fe096cbfb4f90d14f55ff75c5441c1 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpg3e1hj92' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpsene10a2'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_b143ce082e4c4229bb7b9d203db72fed
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 89, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 92, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 96, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-p4vcni0u\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-p4vcni0u\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-p4vcni0u\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 99, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/19/47/ca871546c4e6f69abc11fea271cfce7489c6f999a647f642ceb78df90831/PyICU-2.10.1.tar.gz#sha256=d67f2475d8b21172b5db99e23b2c8a7bf6c04d1097a73a52bb03287c7ace9092 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpsene10a2' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpk8bxq82t'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_871bb79c398846c79c137f0b53cc2517
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 89, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 92, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 96, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-mm1zrywx\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-mm1zrywx\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-mm1zrywx\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 99, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/bc/d5/32d875a6830a35d6efcabd6b62414f6df6ffbf16154ab8a4159864ea83c0/PyICU-2.10.tar.gz#sha256=99c24ca8edd356756a34e9f3c5e84f7376f426e7f9ea52aaae4d75b0e787af68 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpk8bxq82t' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpb480k23h'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_350a20152796467087cd5f55534a21c6
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 63, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 66, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 69, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-wud94gqi\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-wud94gqi\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-wud94gqi\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 71, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/11/76/9256430e729ad0dd4675a15a7bf0555b9085d1bea36083b9a1b095602f23/PyICU-2.9.tar.gz#sha256=3c29d6ce65546157117a1a347a303ecdfcf1a7591ed679fc88cdef4108845878 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpb480k23h' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpc7a45854'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_798eeb191c0746cbb8638aac88f06dcd
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 63, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 66, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 69, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-qwge7510\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-qwge7510\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-qwge7510\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 71, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5c/d0/50e4319f07b0514a9da5dfdf65aa36c0782120c13b1d194a9c1a54cdc537/PyICU-2.8.1.tar.gz#sha256=f0b9549a87f87ba7c413f13679d137271e0b37f1f39b0109ace38257d4d148d6 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpc7a45854' Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpeli9ghjk'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6bda7bc29ced4d60924f7584bc9edfd1
  Complete output (58 lines):
  (running 'icu-config --version')
  (running 'pkg-config --modversion icu-i18n')
  Traceback (most recent call last):
    File "<string>", line 63, in <module>
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
      raise KeyError(key) from None
  KeyError: 'ICU_VERSION'
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 66, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "<string>", line 69, in <module>
    File "<string>", line 19, in check_output
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
      return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
      with Popen(*popenargs, **kwargs) as process:
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
      self._execute_child(args, executable, preexec_fn, close_fds,
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
      hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  FileNotFoundError: [WinError 2] The system cannot find the file specified
  
  During handling of the above exception, another exception occurred:
  
  Traceback (most recent call last):
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
      main()
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 117, in get_requires_for_build_wheel
      return hook(config_settings)
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-wit3l10e\overlay\Lib\site-packages\setuptools\build_meta.py", line 338, in get_requires_for_build_wheel
      return self._get_build_requires(config_settings, requirements=['wheel'])
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-wit3l10e\overlay\Lib\site-packages\setuptools\build_meta.py", line 320, in _get_build_requires
      self.run_setup()
    File "C:\Users\dghr201\AppData\Local\Temp\pip-build-env-wit3l10e\overlay\Lib\site-packages\setuptools\build_meta.py", line 335, in run_setup
      exec(code, locals())
    File "<string>", line 71, in <module>
  RuntimeError:
  Please install pkg-config on your system or set the ICU_VERSION environment
  variable to the version of ICU you have installed.
  
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/1a/b6/ede5f19d79655898162afa778d2f38cbde04b0cccb8737c649cd5d3d38e0/PyICU-2.8.tar.gz#sha256=3d80de47045a8163db5aebc947c42b4d429eeea4f0c32af4f40b33981fa872b9 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' get_requires_for_build_wheel 'C:\Users\dghr201\AppData\Local\Temp\tmpeli9ghjk' Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-xdvsklrs'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c6e542ecaec04e83ae61aa1b156d5ce0\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/6b/ef/d495df371dcbfc36dc68b029495bbc386f59e3c4c6c5f327fc8b9c52c8b1/PyICU-2.7.4.tar.gz#sha256=c0655302e2aea16f9acefe04152f74e5d7d70542e9e15c89ee8d763c8e097f56 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-5yqaiy8t'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_38e5019c35ff4ba4bc2aa580e9e29ee0\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/50/62/230bb78141a03cb3849a1f8ab390eed290a9430b3dabb496c51228271e0b/PyICU-2.7.3.tar.gz#sha256=0892f927b825e6027478f5b3cae52deecc0a1cba488da1ffb0fb299274bb61cb (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_cc4375b4d6224d79832058728662c4a2\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_cc4375b4d6224d79832058728662c4a2\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-ma7i82_3'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_cc4375b4d6224d79832058728662c4a2\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_cc4375b4d6224d79832058728662c4a2\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_cc4375b4d6224d79832058728662c4a2\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_cc4375b4d6224d79832058728662c4a2\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_cc4375b4d6224d79832058728662c4a2\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_cc4375b4d6224d79832058728662c4a2\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_cc4375b4d6224d79832058728662c4a2\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/17/0f/9d6b7eb01650960239a5d4dc21cd6e7a96921807c043d287bae4b2f440e1/PyICU-2.7.2.tar.gz#sha256=1382869b22d91cc99274f9b525fa7d9199b44d9007ff0036a09747839a01e9dc (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_91400f84f46a42f189d6277c08b48c66\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_91400f84f46a42f189d6277c08b48c66\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-j9sbdad6'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_91400f84f46a42f189d6277c08b48c66\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_91400f84f46a42f189d6277c08b48c66\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_91400f84f46a42f189d6277c08b48c66\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_91400f84f46a42f189d6277c08b48c66\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_91400f84f46a42f189d6277c08b48c66\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_91400f84f46a42f189d6277c08b48c66\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_91400f84f46a42f189d6277c08b48c66\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/76/5d/6318f86c81665ddccc4a14408525297aec0c73a71a14994a3cbf822aef2a/PyICU-2.7.1.tar.gz#sha256=23191ec5cae0cf6172f84d3d06010d5c348b8d4d5428edbed4f817beecff2642 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_8b384972fc2845d6826a5783921637a7\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_8b384972fc2845d6826a5783921637a7\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-790ycmxw'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_8b384972fc2845d6826a5783921637a7\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_8b384972fc2845d6826a5783921637a7\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_8b384972fc2845d6826a5783921637a7\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_8b384972fc2845d6826a5783921637a7\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_8b384972fc2845d6826a5783921637a7\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_8b384972fc2845d6826a5783921637a7\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_8b384972fc2845d6826a5783921637a7\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/3c/67/c5414fbeeb65d627ea15928b821a39ad42e9ff355cb3b63898b8020f503c/PyICU-2.7.tar.gz#sha256=56a0aae5f69e1191b0f466bde29f72374caadc8fa966a44ec07429afe5f68cd1 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-n4pirm2g'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ce2f15bf089a46059c26c8ee7b75c7a1\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/31/46/fa08c8efae2951e67681ec24319f789fc1a74e2096dd74373e34c79319de/PyICU-2.6.tar.gz#sha256=a9a5bf6833360f8f69e9375b91c1a7dd6e0c9157a42aee5bb7d6891804d96371 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_fdce22b2c5d042468849ff2376559a5b\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_fdce22b2c5d042468849ff2376559a5b\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-h7v3lfce'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fdce22b2c5d042468849ff2376559a5b\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fdce22b2c5d042468849ff2376559a5b\setup.py", line 63, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fdce22b2c5d042468849ff2376559a5b\setup.py", line 66, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fdce22b2c5d042468849ff2376559a5b\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fdce22b2c5d042468849ff2376559a5b\setup.py", line 69, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fdce22b2c5d042468849ff2376559a5b\setup.py", line 19, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fdce22b2c5d042468849ff2376559a5b\setup.py", line 71, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5a/99/c48c816095208bf3f4936ff67e571621fbddef461303a35a076f234e31f6/PyICU-2.5.tar.gz#sha256=a120b68c53f769f37bfb70b7e84ca12c3f4ab1e4df43e87a02dff05ae472cdbc (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_028477da94254f829d7437806a6b508b\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_028477da94254f829d7437806a6b508b\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-h4en6a_b'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_028477da94254f829d7437806a6b508b\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_028477da94254f829d7437806a6b508b\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_028477da94254f829d7437806a6b508b\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_028477da94254f829d7437806a6b508b\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_028477da94254f829d7437806a6b508b\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_028477da94254f829d7437806a6b508b\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_028477da94254f829d7437806a6b508b\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/57/b2/66a58057a537527d7307576f2d32f239cc411b911401276d6922caa94755/PyICU-2.4.3.tar.gz#sha256=c0ca7741ad0e8b20781578a876dac0357b982b7762ccc2aae116f0b18ce1ab1c (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-3z3aeibf'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_fe0ec359d0754993b56f24b6b4b8ee8a\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/95/0c/0fb09019efb65a29789ec5538f8e521b8f548da6935a3a474e19fbf2ea4d/PyICU-2.4.2.tar.gz#sha256=48c43424b67090c4028d8743132d141d8477f390f93e26c2cb67c26485622c20 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_0e37f3c60bd4416081f91756118c379e\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_0e37f3c60bd4416081f91756118c379e\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-atd7lf6e'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0e37f3c60bd4416081f91756118c379e\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0e37f3c60bd4416081f91756118c379e\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0e37f3c60bd4416081f91756118c379e\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0e37f3c60bd4416081f91756118c379e\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0e37f3c60bd4416081f91756118c379e\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0e37f3c60bd4416081f91756118c379e\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0e37f3c60bd4416081f91756118c379e\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/77/a2/7c22b63c3cab7e41cbf4a930b033f5fc3e47bc5b6b673020f5ba58cecdf2/PyICU-2.4.1.tar.gz#sha256=00727a2d85c6a62ce78846a5f80bfa79bd26c35126f9cc793d269b336fd2ef47 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_48749c41b49b4471810c03ab9bb5eb8d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_48749c41b49b4471810c03ab9bb5eb8d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-aup60xg3'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_48749c41b49b4471810c03ab9bb5eb8d\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_48749c41b49b4471810c03ab9bb5eb8d\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_48749c41b49b4471810c03ab9bb5eb8d\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_48749c41b49b4471810c03ab9bb5eb8d\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_48749c41b49b4471810c03ab9bb5eb8d\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_48749c41b49b4471810c03ab9bb5eb8d\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_48749c41b49b4471810c03ab9bb5eb8d\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please install pkg-config on your system or set the ICU_VERSION environment
    variable to the version of ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/50/65/974ccd4e01f6517f150e5841518afdec64fa0e6993e4b7a3a6291b327962/PyICU-2.4.tar.gz#sha256=8d1907c1f8659b77f5b62fe81c62ac91731c8a56cb3ea0af1dc4db59f8326242 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a3395cee4f1b4a9a8885dee62ff53780\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a3395cee4f1b4a9a8885dee62ff53780\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-8q530h6m'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a3395cee4f1b4a9a8885dee62ff53780\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a3395cee4f1b4a9a8885dee62ff53780\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a3395cee4f1b4a9a8885dee62ff53780\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a3395cee4f1b4a9a8885dee62ff53780\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a3395cee4f1b4a9a8885dee62ff53780\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a3395cee4f1b4a9a8885dee62ff53780\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a3395cee4f1b4a9a8885dee62ff53780\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/e9/35/211ffb949c68e688ade7d40426de030a24eaec4b6c45330eeb9c0285f43a/PyICU-2.3.1.tar.gz#sha256=ddb2b453853b4c25db382bc5e8c4cde09b3f4696ef1e1494f8294e174f459cf4 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-wfdo9obi'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\
    Complete output (53 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\setup.py", line 62, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\setup.py", line 65, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\setup.py", line 68, in <module>
        ICU_VERSION = check_output(('pkg-config', '--modversion', 'icu-i18n')).strip()
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\setup.py", line 18, in check_output
        return subprocess_check_output(popenargs)
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_25fc12b19b194bcfa607ca69ebbf23b0\setup.py", line 70, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    (running 'icu-config --version')
    (running 'pkg-config --modversion icu-i18n')
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/87/10/fdf5842f42834f6e3141668b607c07bc3c94de39acf582c3d4015e7a7fc5/PyICU-2.3.tar.gz#sha256=419d389b014ee48f31014920f300c842df0770a283ab1fb4de82a6af334cac4d (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_370382b275884717a3a270c262ead805\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_370382b275884717a3a270c262ead805\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-m1pghj7w'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_370382b275884717a3a270c262ead805\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_370382b275884717a3a270c262ead805\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_370382b275884717a3a270c262ead805\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_370382b275884717a3a270c262ead805\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/c2/15/0af20b540c828943b6ffea5677c86e908dcac108813b522adebb75c827c1/PyICU-2.2.tar.gz#sha256=ea6ae8bb6845e2e145cf03cd80cf258487b80fca3669ae8a7bf0c5105df10973 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_d5bda56f43f74f82ab5102bc74bd8691\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_d5bda56f43f74f82ab5102bc74bd8691\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-f6nv6okx'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_d5bda56f43f74f82ab5102bc74bd8691\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_d5bda56f43f74f82ab5102bc74bd8691\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_d5bda56f43f74f82ab5102bc74bd8691\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_d5bda56f43f74f82ab5102bc74bd8691\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/1b/28/9a92361dfdd3e967409885dc9829643d005d8950bba04f0a60fc238f7fd9/PyICU-2.1.tar.gz#sha256=5fdab441c91adf9ceb6373dfdca18fbde3676f906babda45d85cf0fa8e43fd8a (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_ff58d7c543e1425cbada35b6438b5c86\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_ff58d7c543e1425cbada35b6438b5c86\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-espw7cdl'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ff58d7c543e1425cbada35b6438b5c86\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ff58d7c543e1425cbada35b6438b5c86\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ff58d7c543e1425cbada35b6438b5c86\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_ff58d7c543e1425cbada35b6438b5c86\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/9a/bb/724e7dd095c87398664b8eea91fdfd2d5ea9782949e13f2f28bcd5e11a0e/PyICU-2.0.6.tar.gz#sha256=dd233737d9fd0399ac5a06382c3c387c257c17bae80aef4e15195bf63d70db67 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_375594240f1a46eba405a9bd16f69a2b\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_375594240f1a46eba405a9bd16f69a2b\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-qu80g_j4'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_375594240f1a46eba405a9bd16f69a2b\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_375594240f1a46eba405a9bd16f69a2b\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_375594240f1a46eba405a9bd16f69a2b\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_375594240f1a46eba405a9bd16f69a2b\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/b9/26/9e993785441f90595e0aad169c1d011e941c3995c207838cc25702e91c5b/PyICU-2.0.5.tar.gz#sha256=9122ff2f813bced986e03679f4c6d24f4d09feb3dc85d2a47f92410797275222 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_0a0a5902e9e94dc596b405c7a13ce984\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_0a0a5902e9e94dc596b405c7a13ce984\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-gs138fqi'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0a0a5902e9e94dc596b405c7a13ce984\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0a0a5902e9e94dc596b405c7a13ce984\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0a0a5902e9e94dc596b405c7a13ce984\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_0a0a5902e9e94dc596b405c7a13ce984\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/52/95/72d75fba16401bd452ae581c3661bbf2e588d6068a9a726726bf7f6b16f5/PyICU-2.0.4.tar.gz#sha256=e074bfbe74919a21bc2ed8e4f98006711888b11efa0e3414ad084c75c340e1bd (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_6a3e78f7b88f48d999cc1ab30a25c20b\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_6a3e78f7b88f48d999cc1ab30a25c20b\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-52lhnp93'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6a3e78f7b88f48d999cc1ab30a25c20b\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6a3e78f7b88f48d999cc1ab30a25c20b\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6a3e78f7b88f48d999cc1ab30a25c20b\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6a3e78f7b88f48d999cc1ab30a25c20b\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/bb/ef/3a7fcbba81bfd213e479131ae21445a2ddd14b46d70ef0109640b580bc5d/PyICU-2.0.3.tar.gz#sha256=c452d14409d93819a398a93d27d5d58d6236af690d537eb2d76c8305e8d0fa5f (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_668c3a75b96747888a093e289ccc744d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_668c3a75b96747888a093e289ccc744d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-qrfa0w3g'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_668c3a75b96747888a093e289ccc744d\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_668c3a75b96747888a093e289ccc744d\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_668c3a75b96747888a093e289ccc744d\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_668c3a75b96747888a093e289ccc744d\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/57/c2/565670f72e3955a3935118be0e44155f8ba823715c45cca123034585ff79/PyICU-2.0.2.tar.gz#sha256=dd8fedfb7e790fb829d0051a27295770146447e4176cb1b6425992e9b5016f10 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_1190ec05f62f4b10a83d77d93445366d\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_1190ec05f62f4b10a83d77d93445366d\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-c2rrecrg'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_1190ec05f62f4b10a83d77d93445366d\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_1190ec05f62f4b10a83d77d93445366d\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_1190ec05f62f4b10a83d77d93445366d\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_1190ec05f62f4b10a83d77d93445366d\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/78/3c/1541fb461e4564676650cf1842fe5dd538b7a89443291592d24788ff1e65/PyICU-2.0.1.tar.gz#sha256=230cc9b28b445da9199e09120593bf6439a55bcac2c44742c612d56becf4366f (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_c55601c6de4542aca5f65f59ab3b8be2\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_c55601c6de4542aca5f65f59ab3b8be2\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-4lj3em9h'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c55601c6de4542aca5f65f59ab3b8be2\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c55601c6de4542aca5f65f59ab3b8be2\setup.py", line 43, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c55601c6de4542aca5f65f59ab3b8be2\setup.py", line 46, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_c55601c6de4542aca5f65f59ab3b8be2\setup.py", line 50, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/12/59/cf242872420615cbcee0a74fe69e2e9c3687a3c11142535569db531571a9/PyICU-2.0.tar.gz#sha256=fff7a9adbfc8501a3d61d0de4a6e6a79b45866c4f41df8b0d95dff7e267b337e (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_11581f7667034fadb95ec30844adb841\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_11581f7667034fadb95ec30844adb841\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-su13xequ'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_11581f7667034fadb95ec30844adb841\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_11581f7667034fadb95ec30844adb841\setup.py", line 12, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_11581f7667034fadb95ec30844adb841\setup.py", line 26, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_11581f7667034fadb95ec30844adb841\setup.py", line 30, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/17/13/12b5631b67fd27b8827fb805df5015c32406ec739d700af68ab49da1203f/PyICU-1.9.8.tar.gz#sha256=cd76e3fe73e96e0b9806bc036ad388b2bbba572762c699bc911ccedbc425df16 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_6984ab0cd2a14ee49442dceeee48e7c3\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_6984ab0cd2a14ee49442dceeee48e7c3\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-19kdno_g'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6984ab0cd2a14ee49442dceeee48e7c3\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6984ab0cd2a14ee49442dceeee48e7c3\setup.py", line 12, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6984ab0cd2a14ee49442dceeee48e7c3\setup.py", line 26, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_6984ab0cd2a14ee49442dceeee48e7c3\setup.py", line 30, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/6e/88/f42a1297909ca6d9113ba37b37067011ae29432fe592fdd98cf52ad23b77/PyICU-1.9.7.tar.gz#sha256=db27cd1cc150b879c5465872bec7fdaf340eca140aa922be03891d5b9f855b61 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_07d4b5f13bee42e4a67d3c352c3769ed\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_07d4b5f13bee42e4a67d3c352c3769ed\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-h9y_4bpd'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_07d4b5f13bee42e4a67d3c352c3769ed\
    Complete output (32 lines):
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_07d4b5f13bee42e4a67d3c352c3769ed\setup.py", line 12, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\os.py", line 679, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_07d4b5f13bee42e4a67d3c352c3769ed\setup.py", line 26, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_07d4b5f13bee42e4a67d3c352c3769ed\setup.py", line 28, in <module>
        raise RuntimeError('''
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.
    
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/bc/78/f4e26f67c9b6b9074baa576ae67947e42fb86039199a65e9ab91ddb51d26/PyICU-1.9.6.tar.gz#sha256=c5c2134f7ad5aa939a899633816f52d8921e787efd4e8d7efb5f450fe10f2550 (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_1df3ea29135047c78f37fe616b779f51\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_1df3ea29135047c78f37fe616b779f51\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\dghr201\AppData\Local\Temp\pip-pip-egg-info-dimrosjb'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_1df3ea29135047c78f37fe616b779f51\
    Complete output (13 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_1df3ea29135047c78f37fe616b779f51\setup.py", line 11, in <module>
        ICU_VERSION = subprocess.check_output(('icu-config', '--version')).strip()
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 424, in check_output
        return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 505, in run
        with Popen(*popenargs, **kwargs) as process:
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
        self._execute_child(args, executable, preexec_fn, close_fds,
      File "C:\Users\dghr201\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
        hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
    FileNotFoundError: [WinError 2] The system cannot find the file specified
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/a2/9f/1947f288143191b903e58633ee597cb98bc284de28dafb1231b6f8b67b99/PyICU-1.9.5.tar.gz#sha256=73b052b800861fae3281dbaf9c92d12a81cabf3d31912d94c51862e093ef359b (from https://pypi.org/simple/pyicu/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pycld2_25a186cf7b28449a851fe4af1f92c87c\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pycld2_25a186cf7b28449a851fe4af1f92c87c\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\dghr201\AppData\Local\Temp\pip-wheel-y5zyb4d3'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\
  Complete output (39 lines):
  running bdist_wheel
  The [wheel] section is deprecated. Use [bdist_wheel] instead.
  running build
  running build_py
  creating build
  creating build\lib.win-amd64-3.9
  creating build\lib.win-amd64-3.9\pycld2
  copying pycld2\__init__.py -> build\lib.win-amd64-3.9\pycld2
  running build_ext
  building 'pycld2._pycld2' extension
  creating build\temp.win-amd64-3.9
  creating build\temp.win-amd64-3.9\Release
  creating build\temp.win-amd64-3.9\Release\Users
  creating build\temp.win-amd64-3.9\Release\Users\dghr201
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\bindings
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2
  creating build\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\internal
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\bindings\encodings.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\bindings\encodings.obj -w -O2 -m64 -fPIC
  cl : Command line warning D9025 : overriding '/W3' with '/w'
  cl : Command line warning D9002 : ignoring unknown option '-m64'
  cl : Command line warning D9002 : ignoring unknown option '-fPIC'
  encodings.cc
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\bindings\pycldmodule.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\bindings\pycldmodule.obj -w -O2 -m64 -fPIC
  cl : Command line warning D9025 : overriding '/W3' with '/w'
  cl : Command line warning D9002 : ignoring unknown option '-m64'
  cl : Command line warning D9002 : ignoring unknown option '-fPIC'
  pycldmodule.cc
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\internal -IC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\public -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /TpC:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\internal/cld2_generated_cjk_compatible.cc /Fobuild\temp.win-amd64-3.9\Release\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\internal/cld2_generated_cjk_compatible.obj -w -O2 -m64 -fPIC
  cl : Command line warning D9025 : overriding '/W3' with '/w'
  cl : Command line warning D9002 : ignoring unknown option '-m64'
  cl : Command line warning D9002 : ignoring unknown option '-fPIC'
  cld2_generated_cjk_compatible.cc
  C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pycld2_25a186cf7b28449a851fe4af1f92c87c\cld2\internal\cld2_generated_cjk_compatible.cc : fatal error C1083: Cannot open compiler generated file: '': Invalid argument
  error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe' failed with exit code 1
  ----------------------------------------
  ERROR: Failed building wheel for pycld2
  ERROR: Command errored out with exit status 1:
   command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a2d22cac585f4f2983d714630ca88caa\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a2d22cac585f4f2983d714630ca88caa\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\dghr201\AppData\Local\Temp\pip-wheel-9ccdyln2'
       cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a2d22cac585f4f2983d714630ca88caa\
  Complete output (16 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build\lib.win-amd64-3.9
  copying icu.py -> build\lib.win-amd64-3.9
  copying PyICU.py -> build\lib.win-amd64-3.9
  copying docs.py -> build\lib.win-amd64-3.9
  running build_ext
  building '_icu' extension
  creating build\temp.win-amd64-3.9
  creating build\temp.win-amd64-3.9\Release
  C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -Ic:/icu/include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /Tp_icu.cpp /Fobuild\temp.win-amd64-3.9\Release\_icu.obj /Zc:wchar_t /EHsc /DPYICU_VER=\"1.9.4\"
  _icu.cpp
  C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a2d22cac585f4f2983d714630ca88caa\common.h(90): fatal error C1083: Cannot open include file: 'unicode/utypes.h': No such file or directory
  error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2
  ----------------------------------------
  ERROR: Failed building wheel for PyICU
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
    ERROR: Command errored out with exit status 1:
     command: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a2d22cac585f4f2983d714630ca88caa\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a2d22cac585f4f2983d714630ca88caa\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\dghr201\AppData\Local\Temp\pip-record-e0oxkh8f\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\Include\PyICU'
         cwd: C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a2d22cac585f4f2983d714630ca88caa\
    Complete output (16 lines):
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-amd64-3.9
    copying icu.py -> build\lib.win-amd64-3.9
    copying PyICU.py -> build\lib.win-amd64-3.9
    copying docs.py -> build\lib.win-amd64-3.9
    running build_ext
    building '_icu' extension
    creating build\temp.win-amd64-3.9
    creating build\temp.win-amd64-3.9\Release
    C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -Ic:/icu/include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Users\dghr201\AppData\Local\Programs\Python\Python39\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.33.31629\ATLMFC\include -IC:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt -IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um /EHsc /Tp_icu.cpp /Fobuild\temp.win-amd64-3.9\Release\_icu.obj /Zc:wchar_t /EHsc /DPYICU_VER=\"1.9.4\"
    _icu.cpp
    C:\Users\dghr201\AppData\Local\Temp\pip-install-jr0jivqd\pyicu_a2d22cac585f4f2983d714630ca88caa\common.h(90): fatal error C1083: Cannot open include file: 'unicode/utypes.h': No such file or directory
    error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2
    ----------------------------------------
ERROR: Command errored out with exit status 1: 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a2d22cac585f4f2983d714630ca88caa\\setup.py'"'"'; __file__='"'"'C:\\Users\\dghr201\\AppData\\Local\\Temp\\pip-install-jr0jivqd\\pyicu_a2d22cac585f4f2983d714630ca88caa\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\dghr201\AppData\Local\Temp\pip-record-e0oxkh8f\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\Include\PyICU' Check the logs for full command output.
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: Ignoring invalid distribution -rotobuf (c:\users\dghr201\appdata\local\programs\python\python39\lib\site-packages)
WARNING: You are using pip version 21.2.3; however, version 23.0.1 is available.
You should consider upgrading via the 'C:\Users\dghr201\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.
Code
from polyglot.text import Text
# Create a new text object using Polyglot's Text class: txt
txt = Text(article)

# Print each of the entities found
for ent in txt.entities:
    print(ent)

# Print the type of ent
print(type(ent))
ModuleNotFoundError: No module named 'polyglot'

French NER with polyglot II

Code
entities = [(ent.tag, ' '.join(ent)) for ent in txt.entities]

# Print entities
print(entities)

Spanish NER with polyglot

Your specific task is to determine how many of the entities contain the words “Márquez” or “Gabo” - these refer to the same person in different ways!

Code
!polyglot download ner2.es embeddings2.es
'polyglot' is not recognized as an internal or external command,
operable program or batch file.
Code
with open('dataset/News articles/spanish.txt', 'r',encoding="utf-8") as file:
    article = file.read()
FileNotFoundError: [Errno 2] No such file or directory: 'dataset/News articles/spanish.txt'
Code
txt = Text(article)

# Initialize the count variable: count
count = 0

# Iterate over all the entities
for ent in txt.entities:
    # check whether the entity contains 'Márquez' or 'Gabo'
    if ('Márquez' in ent) or ('Gabo' in ent):
        # Increment count
        count += 1

# Print count
print(count)

# Calculate the percentage of entities that refer to "Gabo": percentage
percentage = count / len(txt.entities)
print(percentage)